home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / BORLAND TURBO / SERVICES.PAK / CSTRING.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  742 b   |  26 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Services Library
  3. // Copyright (c) 1993, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   5.6  $
  6. //
  7. // Reliable header for standard C++ string class
  8. //----------------------------------------------------------------------------
  9. #if !defined(SERVICES_CSTRING_H)
  10. #define SERVICES_CSTRING_H
  11.  
  12. #if !defined(SERVICES_DEFS_H)
  13. # include <services/defs.h>
  14. #endif
  15.  
  16. #if defined(BI_COMP_BORLANDC)
  17. # if defined(BI_PLAT_MSW) && !defined(SERVICES_WSYSINC_H)
  18. #   include <services/wsysinc.h>  // Let services get MSW headers, not RTL
  19. # endif
  20. # include <cstring.h>
  21. #else
  22. # include <services/private/cstring.h>
  23. #endif
  24.  
  25. #endif
  26.